home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / K-L / LImacSTACK11⁄89.cpt / Using Repeat / card_4768.txt < prev    next >
Text File  |  1989-11-02  |  971b  |  45 lines

  1. -- card: 4768 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 2687
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 8
  9. ----- text -----
  10. repeat with <variable> = <low> to <high>
  11.  
  12. -- part contents for background part 24
  13. ----- text -----
  14. put empty into msg
  15. repeat with i = 1 to 6
  16.    put char i of fld "Title" after msg
  17. end repeat
  18. wait 120
  19.  
  20. put the number of this card into thisCard
  21. repeat with i = 1 to thisCard
  22.    go card i
  23.    put the short name of this cd
  24. end repeat
  25. hide msg
  26.  
  27. -- part contents for background part 26
  28. ----- text -----
  29. put empty into msg
  30. repeat with i = 1 to 6
  31.    put char i of fld "Title" after msg
  32. end repeat
  33. wait 120
  34.  
  35. put the number of this card into thisCard
  36. repeat with i = 1 to thisCard
  37.    go card i
  38.    put the short name of this cd
  39. end repeat
  40. hide msg
  41.  
  42. -- part contents for background part 30
  43. ----- text -----
  44. Each time through the loop the variable is increased by 1 until it reaches the high number.
  45. MOST COMMON REPEAT STRUCTURE!